sandboxfs: Fix resource leak
authorTom Rini <[email protected]>
Tue, 18 Oct 2016 01:09:32 +0000 (21:09 -0400)
committerSimon Glass <[email protected]>
Fri, 2 Dec 2016 17:37:47 +0000 (10:37 -0700)
commit0317724e6c5db6229dbdc03dd9c9b68a559973fe
treebf9dd795848f7d1c2a8202c5888a51563af1ecdc
parenta982b6f5149387d931442837f598c9589bbd12bf
sandboxfs: Fix resource leak

Now that we free resources in sandbox_fs_ls Coverity is letting us know
that in some cases we might leak.  So in case of error we should still
let os_dirent_free free anything that was allocated.

Fixes: 86167089b71c ("sandbox/fs: Free memory allocated by os_dirent_ls")
Reported-by: Coverity (CID: 153450)
Cc: Stefan BrĂ¼ns <[email protected]>
Cc: Simon Glass <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
fs/sandbox/sandboxfs.c